home *** CD-ROM | disk | FTP | other *** search
/ Developer Helper 1: Phil & Dave's Excellent CD / Excellent CD HFS.raw / HyperCard / HyperCard 1.2.2 International / HyperCard Italian (T-1.2.2) / Stack Principali / Note di Rilascio (1.2.2) / Note di Rilascio (1.2.2) / card_11820.txt < prev    next >
Text File  |  1988-12-01  |  2KB  |  85 lines

  1. -- card: 11820 from stack: in.2)
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 5683
  5. -- name: showPict
  6.  
  7.  
  8. -- part contents for background part 7
  9. ----- text -----
  10. showPict
  11.  
  12. -- part contents for background part 9
  13. ----- text -----
  14. Nuove Propriet√† HyperTalk
  15. Scheda 5 su 6
  16.  
  17. -- part contents for background part 11
  18. ----- text -----
  19. La propriet√† showPict rende la grafica della cornice o della scheda visibile (quando √® TRUE) o invisibile (quando √® FALSE).
  20.  
  21.  
  22.  
  23. -- part contents for background part 35
  24. ----- text -----
  25. ‚Ä¢  Quando la grafica della scheda (o cornice) √® nascosta e tu
  26.     provi a 
  27.  
  28.     (a) usare uno strumento di Disegno, o
  29.  
  30.     (b) incollare un disegno, 
  31.  
  32.     appare una finestra di dialogo che chiede se vuoi
  33.     rendere visibile la grafica.  Facendo clic su OK viene
  34.     mostrata la grafica presente; altrimenti annulli l'intera
  35.     operazione.
  36.  
  37.  
  38.  
  39. -- part contents for background part 8
  40. ----- text -----
  41. set showPict of <scheda> to {TRUE|FALSE}
  42. set showPict of <cornice> to {TRUE|FALSE}
  43.  
  44. -- part contents for background part 10
  45. ----- text -----
  46. <scheda> √® un'espressione che indica una scheda.
  47. <cornice> identifica una cornice.
  48.  
  49. -- part contents for background part 18
  50. ----- text -----
  51. on showPictureDemo
  52.  
  53. --fa lampeggiare 3 volte la grafica della cornice:
  54.  
  55.   repeat 6 times
  56.      set showPict of this bg to¬¨
  57.          not(showPict of this bg)
  58.   end repeat
  59.  
  60. end showPictureDemo
  61.  
  62.  
  63. -- part contents for background part 31
  64. ----- text -----
  65. Hide Picture
  66. Lock e Unlock Screen
  67. Nuovi Sinonimi
  68. Show Picture
  69.  
  70. -- part contents for background part 17
  71. ----- text -----
  72. --mostra la grafica:
  73. set showPict of this card to TRUE
  74. set showPict of prev background to TRUE
  75. set showPict of cd id 23484 to TRUE
  76.  
  77. --nascondi la grafica:
  78. set showPict of this card to FALSE
  79. set showPict of prev background to FALSE
  80. set showPict of cd id 23484 to FALSE
  81.  
  82. --per avere il valore corrente di showPict:
  83. get showPict of first card
  84. get showPict of variabileMiaCornice
  85. put showPict of next cd